home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 41 / CD Expert nº 41.iso / DReign2 / DR2Demo.exe / data1.cab / Files / missions / demo / Demo Mission 2.zwp / objective_you_won.cfg < prev    next >
Encoding:
Text File  |  2000-09-01  |  425 b   |  29 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 1997-99 Pandemic Studios
  4. //
  5. // Dark Reign II
  6. //
  7.  
  8. CreateObjectType("objective_you_won", "Objective")
  9. {
  10.   GameObj();
  11.   ObjectiveObj()
  12.   {
  13.     Condition("Timer")
  14.     {
  15.       Time(10);
  16.     }
  17.  
  18.     Action()
  19.     {
  20.       GameMessage()
  21.       {
  22.         Message("msg_good_job");
  23.       }
  24.       Win();
  25.     }
  26.   }
  27. }
  28.  
  29.